home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / os2 / memsz313.zip / SOURCE.ZIP / HELPWIN.H < prev    next >
C/C++ Source or Header  |  1994-01-19  |  352b  |  15 lines

  1. // Class HELPWIN: Encapsulates the startup/shutdown logic for an OS/2-PM help window.
  2.  
  3. #define INCL_WIN
  4. #include <os2.h>
  5.  
  6. class HelpWindow
  7. {
  8.   private:
  9.     HWND Handle ;
  10.  
  11.   public:
  12.     HelpWindow ( HAB Anchor, HMODULE Module, USHORT Id, PSZ Filename, PSZ Title ) ;
  13.     ~HelpWindow ( ) ;
  14.     HWND QueryHandle () { return ( Handle ) ; }
  15. } ;